html {
    display: block;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    margin: 0;
    min-width: 0;
    padding: 0;
}

    h2 {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 10px;
        margin-top: 50px;
    }

    .subtitle {
        text-align: center;
        color: #666;
        margin-bottom: 40px;
    }
    .pricing-plans-for-marketers,
    .pricing-plans-for-companies {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 0;
    }

    .pricing-type {
        display: grid;
        justify-items: center;
        margin-bottom: 2rem;
    }

    .pricing-type button{
        border: 2px solid #2868a7;
        background: #2868a7;
        color: white;
        text-align: center;
        padding: 12px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: bold;
   }

    .pricing-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        max-width: 1100px;
        margin: auto;
    }

    .plan {
        background: #fff;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .plan.highlight {
        border: 2px solid #2868a7;
        transform: translateY(-5px);
    }

    .badge {
        position: absolute;
        top: -12px;
        right: 20px;
        background: #2868a7;
        color: #fff;
        padding: 5px 12px;
        font-size: 12px;
        border-radius: 20px;
    }

    .plan h2 {
        margin: 0 0 10px;
    }

    .price {
        font-size: 32px;
        font-weight: bold;
        margin: 10px 0;
    }

    .price span {
        font-size: 14px;
        color: #666;
    }

    .features {
        margin: 20px 0;
        padding: 0;
        list-style: none;
        flex-grow: 1;
    }

    .features li {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }

    .features li:last-child {
        border-bottom: none;
    }

    .btn {
        text-align: center;
        padding: 12px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: bold;
        margin-top: 20px;
        display: block;
    }

    .btn-basic {
        border: 2px solid #2868a7;
        color: #2868a7;
    }

    .btn-basic:hover {
        background: #2868a7;
        color: #fff;
    }

    .btn-primary {
        background: #2868a7;
        color: #fff;
    }

    .btn-primary:hover {
        background: #215388;
    }

    .faq-section {
        max-width: 900px;
        margin: 80px auto 0;
        background: #fff;
        border-radius: 10px;
        padding: 40px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .faq-section h2 {
        margin-bottom: 25px;
    }

    details {
        border-bottom: 1px solid #ddd;
        padding: 15px 0;
    }

    summary {
        cursor: pointer;
        font-weight: bold;
    }

    details p {
        margin-top: 10px;
        color: #555;
    }
    .pricing-plans-for-marketers {
        display: block;
    }
    .pricing-plans-for-companies {
        display: none;
    }
    a:hover {
        text-decoration: none;
    }
    @media (max-width: 950px) {
        .pricing-container{
            display: flex;
            flex-direction: column;
        }
        .plan {
            max-width: 280px;
            align-self:center;
        }
        .price {
            align-self: center;
        }
    }
    @media (max-width: 750px) {
        h2 {
            max-width: 70vw;
            justify-self: center;
        }
        .subtitle {
            max-width: 70vw;
            justify-self: center;
            margin-bottom: 20px;
        }
        .pricing-plans-for-marketers,
        .pricing-plans-for-companies {
            padding: 2rem 1rem 0;
        }
        .faq-section {
            margin: 3rem auto 0;
            padding: 2rem 1.2rem;
        }
        .pricing-type {
            margin-bottom: 4rem;
        }
    }
    @media (max-width: 600px) {
        .select__work__seekers {
            display: grid;
            justify-self: center;
        }
        .select__companies {
            display: grid;
            justify-self: center;
        }
    }
